home *** CD-ROM | disk | FTP | other *** search
/ Windows Undocumented File Formats / Windows Undocumented File Formats.img / CHAP1 / SETVAL / MAKEFILE.BOR next >
Text File  |  1997-07-21  |  757b  |  27 lines

  1. ############################################################
  2. #
  3. # Makefile for setval.c using the Borland compiler/linker
  4. # Chap. 1, Undocumented Windows File Formats, published by
  5. # R&D Books, an imprint of Miller Freeman, Inc.
  6. #
  7. # Copyright 1997, Mike Wallace and Pete Davis
  8. #
  9. # Environment variable requirements:
  10. #
  11. #   1) 'bcc' must be in your path
  12. #   2) Change the -I argument to the
  13. #      'include' subdirectory for your compiler
  14. #   3) Change the -L argument to the
  15. #      'lib' subdirectory for your compiler
  16. #
  17. # Compile the program with:  make -fmakefile.bor
  18. #
  19. ############################################################
  20.  
  21. PROG    = SETVAL
  22.  
  23. $(PROG).EXE:  $(PROG).C 
  24.     bcc -mm -Id:\bc45\include -Ld:\bc45\lib $(PROG).C
  25.  
  26.  
  27.